[staticanalysis]: Delete an unused variable
authorColin Walters <walters@verbum.org>
Sat, 21 Jun 2014 21:36:23 +0000 (17:36 -0400)
committerColin Walters <walters@verbum.org>
Sat, 21 Jun 2014 22:08:49 +0000 (18:08 -0400)
https://bugzilla.gnome.org/show_bug.cgi?id=732020

src/ostree/ot-builtin-checkout.c

index ff055e753a07411c225eec032651d1033dbc1a71..fae461f0ef73a60b3ec19ffaca84b1967d7393b5 100644 (file)
@@ -178,7 +178,6 @@ ostree_builtin_checkout (int argc, char **argv, OstreeRepo *repo, GCancellable *
   const char *destination;
   gs_free char *resolved_commit = NULL;
   gs_unref_object GFile *checkout_target = NULL;
-  gs_unref_object GFile *checkout_target_tmp = NULL;
 
   context = g_option_context_new ("COMMIT DESTINATION - Check out a commit into a filesystem tree");
   g_option_context_add_main_entries (context, options, NULL);
@@ -218,7 +217,7 @@ ostree_builtin_checkout (int argc, char **argv, OstreeRepo *repo, GCancellable *
       checkout_target = g_file_new_for_path (destination);
 
       if (!process_one_checkout (repo, resolved_commit, opt_subpath,
-                                 checkout_target_tmp ? checkout_target_tmp : checkout_target,
+                                 checkout_target,
                                  cancellable, error))
         goto out;
     }